<pre>
<?php 
//curl -H "X-Access-Server: 3346d95f-9315-4a1f-b320-63b35df9995f" -H "X-Access-Token: a25ad25a-617f-4ca3-bd31-e608eed300f2" "https://mc32-01.dannyandson.com:5656/server";

// create a new cURL resource
$ch = curl_init();

// set URL and other appropriate options
curl_setopt($ch, CURLOPT_URL, "https://mc32-01.dannyandson.com:5656/server");
curl_setopt($ch, CURLOPT_HEADER, "X-Access-Server: 3346d95f-9315-4a1f-b320-63b35df9995f");
curl_setopt($ch, CURLOPT_HEADER, "X-Access-Token: a25ad25a-617f-4ca3-bd31-e608eed300f2");

// grab URL and pass it to the browser
curl_exec($ch);

// close cURL resource, and free up system resources
curl_close($ch);


?>
</pre>